4335961b36ff244195448f8442a0f0c53a1cc91b,library/src/main/java/com/smartydroid/android/starter/kit/app/StarterNetworkActivity.java,StarterNetworkActivity,showException,#Throwable#,76
Before Change
private void showException(Throwable e) {
if (showMessage() && e != null) {
Snackbar.make(getWindow().getDecorView(),
e.getMessage(), Snackbar.LENGTH_SHORT).show();
}
}
After Change
private void showException(Throwable e) {
if (showMessage() && e != null) {
Snackbar.make(getWindow().getDecorView().findViewById(android.R.id.content),
e.getMessage(), Snackbar.LENGTH_SHORT).show();
}
}